home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / utility / ffe101.zip / ARCHIVES.SWG / 0010_MSCOMPRESS 5.0.pas < prev    next >
Pascal/Delphi Source File  |  1996-09-03  |  1KB  |  30 lines

  1. --------A-MS COMPRESS 5.0-G-----------------
  2.  
  3. Microsoft  ships  its files compressed  with COMPRESS.EXE, for expansion
  4. the  program  EXPAND.EXE  (how  original  ;)  )  is  used.  The  program
  5. EXPAND.EXE  is  available  with every copy  of  MS-DOS 5.0+, the program
  6. COMPRESS.EXE is available with several development kits, I found it with
  7. Borland   Pascal  7.0.  The  compression  seems   to  be  some  kind  of
  8. LZ-Compression,  as  the fully compatible?  LZCopy command under Windows
  9. can  decompress  the  same files. This  compression  feature seems to be
  10. available on all DOS-PCs.
  11.  
  12. OFFSET              Count TYPE   Description
  13. 0000h                   4 char   ID='SZDD'
  14. 0004h                   1 long   reserved, always 3327F088h ?
  15.  
  16. 0008h                   1 byte   reserved
  17. 0009h                   1 char   Last char of filename if file was compressed
  18.                                  into "FILENAME.EX_".
  19. 000Ah                   1 long   Original file size
  20. 000Eh                   1 byte   reserved, varies...
  21.  
  22.  
  23. EXTENSION:*.??_
  24. OCCURENCES:PC
  25. PROGRAMS:COMPRESS.EXE, EXPAND.EXE, LZEXPAND.DLL
  26. REFERENCE:?Windows SDK?
  27. SEE ALSO:MS COMPRESS 6.22+
  28. VALIDATION:
  29.  
  30.